home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / archive / userbox / publicdomain / gadutil.lha / GadUtil / Docs / GadUtil_usr.readme < prev    next >
Text File  |  1996-07-16  |  9KB  |  219 lines

  1. Short:    GUI creation library (small & fast)
  2. Author:   P-O Yliniemi / Staffan Hämälä
  3. Uploader: peoyli@algonet.se (P-O Yliniemi)
  4. Version:  37.8
  5. Type:     util/libs
  6.  
  7. This is the user distribution of GadUtil library. If you are interested
  8. in developing programs that uses this library, you should get the
  9. distribution from dev/gui on Aminet.
  10.  
  11. For advanced "normal" users:
  12. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. Two versions of the library are included: one "normal" every-day-use
  14. version and one "debug" version. If you experience any trouble running
  15. a program that uses gadutil, you should rename the normal version in libs:,
  16. copy the debug version to libs, and rename it to gadutil.library. Reverse
  17. this to change back to the normal version. Don't forget to "flush" all
  18. unused libraries or reboot before testing the program again.
  19.  
  20. Changes overview:
  21. ~~~~~~~~~~~~~~~~~
  22. * 37.8  (15-Jul-96)
  23.         Some bug fixes in the new help functions. If 0 was used as data on a GU_HelpText
  24.         tag with a gadget that shows the help text in the window's or screen's title,
  25.         there were some enforcer hits
  26.  
  27.         Deleted the separate autodoc files. Appended some information on the contents of
  28.         the GU_Public structure to the autodocs. More info about SCRTITLE_HELP and
  29.         WINTITLE_HELP was also appended.
  30.  
  31.         Changed the help function so that all gadgets and title bars that are used to
  32.         display help strings is cleared if the mouse pointer is outside all gadgets that
  33.         have help texts.
  34.  
  35. * 37.7  (12-Jul-96)
  36.     Bug fix in the prototype for GU_ChangeStr (two parameters was mixed up).
  37.  
  38.     GU_ChangeStr now works for both STRING_KIND and TEXT_KIND gadgets. If the
  39.     gadget isn't a STRING or TEXT gadget nothing is done.
  40.  
  41.     Bug fix in GU_CoordsInGadBox function. The register D3 was trashed in all
  42.     earlier versions of GU.
  43.  
  44.     Three new tags allows any STRING or TEXT_KIND gadget to show a (localized)
  45.     help text for each gadget in the window. These tags also works with the
  46.     special gadgets (BEVELBOX, LABEL, PROGRESS). The gadgets attached to the
  47.     window is scanned in sequential order. If a BEVELBOX_KIND gadget matches
  48.     the pointer position, this gadget's help string will have the lowest
  49.     priority. If another BEVELBOX is found inside this, the help string for
  50.     that one will be used if there is no gadget inside that box. The help
  51.     text can also be displayed in the window/screen title.
  52.  
  53.     The TEXT_KIND, STRING_KIND, NUMBER_KIND and INTEGER_KIND gadget's current
  54.     value can now be read from the gu_Active field in the structure    that
  55.     gg_UserData points to.
  56.  
  57. * 37.6  (15-Jun-96)
  58.     gu_Active in the structure that gg_UserData points to was not updated
  59.     when using any routine that used GU_SetGadgetAttrsA(). Now it checks
  60.     the gu_Active value to see if it is out of the gadget's limits.
  61.  
  62.     gng_Flags and gng_GadgetText is now cleared before creation of every
  63.     new gadget.
  64.  
  65.     The LAYOUTA_Spacing tag for LISTVIEW_KIND gadgets is now used to
  66.     determine the height of the gadget. If the height of a gadget should
  67.     be about 4 lines (GU_HeightFactor, 4), the height of the gadget is
  68.     calculated to 4*(font height+value of LAYOUTA_Spacing tag). The same
  69.     method is used for the GU_AddHeiLines tag.
  70.  
  71.     Hotkeys for LISTVIEW_KIND gadgets works as they should again. In v37.5
  72.     of GadUtil (and probably some earlier ones), the listview didn't scroll
  73.     down when you selected the next entry.
  74.  
  75.     Inserted pragmas and prototypes for tagcalls (pragmas only for SAS/C).
  76.     It is possible to create stub routines for the tagcalls for other
  77.     compilers by using fd2pragma 2.0.
  78.  
  79.     Inserted links to the include files in the index file for GadUtil.guide.
  80.  
  81. * 37.5  (29-May-96)
  82.     Bug in PROGRESS_KIND gadget removed. If the gadget was set to
  83.     show x/0 (also 0/0), a division by zero was done.
  84.  
  85.     Two new constants added to the include files: GADUTIL_VER and
  86.     GADUTIL_REV.
  87.     
  88.     Bug fixes in test (demo) programs. The FPF_DISKFONT flag in the
  89.     TextAttr structure was unset in all demo programs. Replaced the
  90.     manual version check in the demo programs with the GadUtil function
  91.     GU_CheckVersion. Removed unnecessary IDCMP flags from the demo
  92.     programs and replaced GadTools IDCMP with the GU_MinimumIDCMP tag.
  93.  
  94. * 37.4  (14-May-96)
  95.     Created a new gadget kind: LABEL_KIND. This gadget kind is used
  96.     to place text relative to other gadgets, bevel boxes, and other
  97.     texts. Can use the same type of shadows that the text for the
  98.     bevel box.
  99.  
  100.     Implemented a new function in the library: GU_CloseFont. Works
  101.     like graphics CloseFont, but takes the parameter in A0 instead
  102.     of A1.
  103.  
  104.     Replaced the list sort routine with a new one that sorts better.
  105.  
  106.     Wrote a new document, "GadUtil.index", that have a list over all
  107.     gadutil functions, sorted by what they do. There are also some
  108.     shortcuts to all tags for gadutil's own gadget kinds.
  109.  
  110.     Created two new flags for BEVELBOX_KIND and LABEL_KIND:
  111.     BB_3DTEXT - can be used as a replacement for GUBB_3DText, TRUE
  112.     LB_3DTEXT - can be used as a replacement for GULB_3DText, TRUE
  113.  
  114. * 37.3  (10-May-96)
  115.     Enforcer hits fixed in the code that handles the GU_AdjustLeft
  116.     and GU_AdjustRight tags.
  117.  
  118.     A new function to clear the inner part of a window was added.
  119.  
  120.     A new function to size (and move, if necessary) a window was
  121.     added.
  122.  
  123.     Bug fix in assembly language include file.
  124.  
  125. * 37.2  (02-May-96)
  126.     Started programming in StormC and did some tests with the library,
  127.     noticed that there was a couple of errors in some include files.
  128.  
  129.     GU_UpdateProgress was wrongly specified in the FD/clib files.
  130.     The output of GU_GetGadgetPtr was specified as (struct Gadget *),
  131.     this is now corrected.
  132.  
  133.     Included an example in C that uses the PROGRESS_KIND gadget.
  134.  
  135. * 37.1  (01-May-96)
  136.     IMAGE_KIND gadget bug fix. The color of the unselected image of
  137.     the gadget was wrong, if the image used more than 4 colors.
  138.  
  139. * 37.0  (29-Apr-96)
  140.     A new function that checks the library's revision added.
  141.     Two new tags added: GU_FractWidth and GU_FractHeight. Suggested
  142.     by Morten Amundsen.
  143.  
  144.     Some small bug fixes in 'C' include files (unterminated comments).
  145.     Cleaned up BetterTest.c a bit (removed some {}). Bug fix on the
  146.     last line of the example (GT_ReplyIMsg -> GU_ReplyIMsg).
  147.  
  148.     Added support for StormC in both installer script and include-
  149.     file installer. Created dictionary for StormC, so that all words
  150.     that belongs to GadUtil (functions, tags and constants) is shown
  151.     in another color.
  152.  
  153. * 36.60 (24-Feb-96)
  154.     Uses the screen's font as the gadget font if no GU_DefTextAttr or
  155.     GU_TextAttr tag is used. Bug fix from v36.59. Changed some docs,
  156.     assembled all examples,    changed installation scripts.
  157.  
  158. * 36.59 (06-Jan-96)
  159.     More docs completed (all docs, finally). Bug fix in the GU_AutoWidth,
  160.     GU_AdjustLeft and GU_AdjustRight tags. The underscore character was
  161.     counted as a normal one. This made gadgets without hotkeys one char
  162.     smaller than other gadgets. A new function that sorts one or two
  163.     lists was added. Some new constants added in include files.
  164.     Changed GU_MinimumIDCMP to support hotkeys. Changed PROGRESS_KIND
  165.     to use GU_GadgetText and GU_LocaleText. Uses the screen's font as
  166.     the gadget font if no GU_DefTextAttr or GU_TextAttr tag is used.
  167.  
  168. * 36.58 (01-Jan-96)
  169.     SLIDER_KIND and SCROLLER_KIND gadgets returned wrong result in
  170.     im->Code if the gadget was changes using the hotkey. Bug reported
  171.     by Lucasz Szelag.
  172.  
  173. * 36.57 (10-Dec-95)
  174.     Some more docs finished. A memory loss bug was fixed.
  175.  
  176. * 36.56 (10-Oct-95)
  177.     Changed some routines, so that hotkeys can't be used on disabled
  178.     gadgets. Made it possible to disable IMAGE_KIND, FILE_KIND and
  179.     DRAWER_KIND gadgets.
  180.  
  181. * 36.55 (30-Sep-95)
  182.     Bug fix in the hotkey part of the library. Wrong code were sent back
  183.     when using GU_LabelHotkey with a LISTVIEW_KIND gadget. A new gadget
  184.     kind was created, PROGRESS_KIND.
  185.  
  186. * 36.54 (06-Jul-95)
  187.     Added support for GU_AutoWidth to CYCLE_KIND gadgets.
  188.  
  189. * 36.53 (05-Jul-95) 
  190.     3 new tags and 4 new flags was added for the BEVELBOX_KIND gadget.
  191.     BEVELBOX_KIND gadgets can now have a shadow added to the text in the
  192.     border. The "sun" can be placed in 4 different places. GU_MinimumIDCMP
  193.     tag was added.
  194.  
  195. * 36.52 (25-Jun-95)
  196.     First public release. Some new flags for the BEVELBOX_KIND gadget was
  197.     added. Supports a total of 100 bevelbox kinds.
  198.  
  199.  
  200.  
  201.                                           P-O 960715
  202.                                           ~~~~~~~~~~
  203.  
  204.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  205.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  206.         Per-Olof Yliniemi                           Staffan Hämälä
  207.         Box 78                                      Pellovägen 268
  208.         SE-980 61 Tärendö                           SE-957 93 Pello
  209.         SWEDEN                                      SWEDEN
  210.  
  211.         email:                                      email:
  212.           peoyli@algonet.se                           staham@algonet.se
  213.  
  214.         phone:
  215.           +46-(0)978-20522
  216.  
  217.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  218.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  219.